home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 11 - 1995 / 11.02 Feb 95 / Yenta / Application Shellƒ / CPPYentaMenuBar.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-04  |  523 b   |  25 lines  |  [TEXT/KAHL]

  1. /***************************************************** IMPLEMENTATION
  2.     DATE:    9/20/93
  3.     AUTHOR: Eric R. Rosé
  4.  
  5.     CLASS:  CPPYentaMenuBar
  6.     
  7.     SUPERCLASS: CPPMenuBar
  8.     
  9.         This C++ class manages the menu bar for our application
  10.     
  11. ********************************************************************/
  12.  
  13. #pragma once
  14.  
  15. #include <CPPMenuBar.h>
  16.  
  17. class CPPYentaMenuBar : public CPPMenuBar {
  18. public:
  19.             CPPYentaMenuBar (void);
  20.             ~CPPYentaMenuBar (void);
  21.  
  22.     virtual    char *ClassName (void);
  23.     virtual    void SetCommandBindings (void);
  24.                             
  25. };